home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / wildhearts_stage_dive.swf / scripts / frame_27 / PlaceObject2_211_159 / CLIPACTIONRECORD onClipEvent(load).as
Text File  |  2011-08-19  |  333b  |  16 lines

  1. onClipEvent(load){
  2.    _root.globalsound = new Sound();
  3.    this.onEnterFrame = function()
  4.    {
  5.       currvolume = _root.globalsound.getVolume();
  6.       if(currvolume >= 10)
  7.       {
  8.          _root.globalsound.setVolume(currvolume - 10);
  9.       }
  10.       else
  11.       {
  12.          _root.globalsound.setVolume(0);
  13.       }
  14.    };
  15. }
  16.